home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / p_aa4re / bb212src / bbrunerr.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-03-07  |  2.0 KB  |  38 lines

  1. (*===========================================================================*)
  2. (* Run error messages                                                        *)
  3. (*                                                                           *)
  4. (*   Copyright 1989, 1991 by H. Roy Engehausen.  All rights reserved.        *)
  5. (*                                                                           *)
  6. (*===========================================================================*)
  7.  
  8. UNIT BBRUNERR;
  9.  
  10. INTERFACE
  11.  
  12. CONST
  13.  
  14. (*===========================================================================*)
  15. (* Caused by DOS                                                             *)
  16. (*===========================================================================*)
  17.  
  18.   dos_ok            = 0;       (* Everything ok                              *)
  19.   dos_not_found     = 2;       (* File not found                             *)
  20.  
  21. (*===========================================================================*)
  22. (* These are mine                                                            *)
  23. (*===========================================================================*)
  24.  
  25.   yapp_error         = 230;     (* Internal error in YAPP                    *)
  26.   mbbios_not_found   = 231;     (* MBBIOS wasn't found                       *)
  27.   nil_subj           = 232;     (* NIL subject found in SR processing        *)
  28.   ovr_error          = 233;     (* Overlay error                             *)
  29.   swp_error          = 234;     (* Swap error                                *)
  30.   free_list_error    = 235;     (* Corrupted free chain                      *)
  31.   max_msg_number_err = 236;     (* Max msg number reached                    *)
  32.   bpq_overrun        = 237;     (* BPQ host mode buffer overrun              *)
  33.   action_error       = 238;     (* Action bad                                *)
  34.   msg_runerr         = 239;     (* Msg corruption                            *)
  35.  
  36. IMPLEMENTATION
  37. END.
  38.